#hero {
    /* min-height: 100vh; */
    background: var(--grad);
    background-size: cover;
    min-height: 37rem;
}

.banner-content {
    padding: 5rem 0px;
}

.banner-img {
    width: 100%;
    box-shadow: 0px 16px 32px rgba(20, 27, 52, 0.4);
}

#aboutus {
    background: url("../images/home/blue-shadow.png") no-repeat left top, url("../images/home/purple-shadow.png") no-repeat right top, url("../images/faq-1.png") no-repeat 50% 150%;
}

.highlights-holder {
    border-radius: 1rem;
    border: 1px solid #3A4776;
    background: linear-gradient(122deg, rgba(83, 107, 193, 0.20) 0%, rgba(32, 42, 75, 0.20) 100%);
    box-shadow: 0px 8px 16px 0px rgba(31, 42, 76, 0.12);
    backdrop-filter: blur(25px);
    padding: 1.5rem;
    margin-top: 2rem;
}

.highlights-holder .highlight:nth-child(2) {
    border-left: 1px dashed #707FB2;
    border-right: 1px dashed #707FB2;
}

.highlight {
    width: 33.33%;
}

.highlight h2 {
    font-size: 2.625rem;
    font-weight: bold;
}

.highlight.pink h2 {
    color: #FF73A6;
}

.highlight.purple h2 {
    color: #AB79F6;
}

.highlight.green h2 {
    color: #51D3B4;
}

.main-heading .highlight-text {
    display: block;
}

.card {
    padding: 2rem;
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: 0px 0.5rem 2rem rgba(103, 113, 127, 0.08);
    width: 32%;
    border: unset;
}

.card h5 {
    font-size: 1.5rem;
    font-weight: var(--bold);
    color: var(--black);
}

.card p {
    margin-bottom: 0px;
    color: var(--gray);
}

.card img {
    max-width: 4.375rem;
    display: block;
    margin: 0px auto 1rem auto;
}

.dummy-team-holder {
    padding: 2rem 0px;
}

.dummy-team-holder img {
    max-width: 16rem;
}

.email-highlight {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: var(--regular);
}

.email-highlight a {
    font-weight: var(--bold);
    color: var(--black);
    background-color: #FFF1D5;
    display: inline-block;
    padding: 0px 0.25rem;
    text-decoration: underline;
}

.team-member-photo {
    width: 100%;
    box-shadow: 0px 0.5rem 2rem rgba(103, 113, 127, 0.08);
    padding: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--white);
}

.team-member-photo img {
    width: 100%;
    min-width: 290px;
    min-height: 306px ;
}

.team-member-info {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(17.5px);
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: -1.75rem;
    -webkit-backdrop-filter: blur(17.5px);  
    backdrop-filter: blur(17.5px);
}

.team-member-info h6 {
    font-size: 1.25rem;
    font-weight: var(--bold);
    color: var(--black);
}

.team-member-info p {
    margin-bottom: 0;
}

.twins-img img {
    width: 49%;
    display: block;
    border-radius: 0.5rem;
}

.twins-img img:first-child {
    bottom: -2rem;
    right: -2rem;
    position: relative;
    z-index: -1;
}


/* Media Query */

@media screen and (max-width: 768px) {
    .team-member-info {
        position: unset;
        margin-top: -3rem;
        margin-left: 10%;
        -webkit-backdrop-filter: blur(17.5px); 
        backdrop-filter: blur(17.5px);
    }
    .team-member {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 580px) {
    #aboutus {
        background: url("../images/home/blue-shadow.png") no-repeat left top, url("../images/home/purple-shadow.png") no-repeat right top, url("../images/faq-1.png") no-repeat 50% 100%;
    }
    #hero {
        min-height: unset;
    }
    .card {
        width: 100%;
        margin-top: 1rem;
    }
    .highlight {
        width: 100%;
    }
    .highlights-holder .highlight:nth-child(2) {
        border-top: 1px dashed #707FB2;
        border-bottom: 1px dashed #707FB2;
        padding: 1.5rem 0px;
        margin: 1.5rem 0px;
        border-left: unset;
        border-right: unset;
    }
}